recursive line count [closed]

Posted by RobKohr on Stack Overflow See other posts from Stack Overflow or by RobKohr
Published on 2010-04-02T22:08:07Z Indexed on 2010/04/02 22:13 UTC
Read the original article Hit count: 162

Filed under:
|

One answer I found:

find ./ -not -type d -exec wc -l {} + | awk '{t+=$1} END {print t}'

© Stack Overflow or respective owner

Related posts about find

Related posts about command-line